84bf81ebc410618ddf23a09acb58d814dc2f1cc1,bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java,BundlePlugin,buildOSGiBundle,#MavenProject#Map#Properties#Jar[]#,356
Before Change
if ( !properties.containsKey( Analyzer.EXPORT_PACKAGE ) && !properties.containsKey( Analyzer.PRIVATE_PACKAGE ) )
{
if ( properties.containsKey( Analyzer.EXPORT_CONTENTS ) )
{
/*
* if we have exportcontents but no export packages or private packages then we're probably embedding or
After Change
if ( builder.getProperty( Analyzer.EXPORT_PACKAGE ) == null &&
builder.getProperty( Analyzer.PRIVATE_PACKAGE ) == null )
{
if ( builder.getProperty( Analyzer.EXPORT_CONTENTS ) != null )
{
/*
* if we have exportcontents but no export packages or private packages then we're probably embedding or